home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
machserver
/
1.098
/
lfs
/
lfsFileLayoutInt.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-10-19
|
1KB
|
34 lines
/*
* lfsFileLayoutInt.h --
*
* Declarations of data structures describing the layout of
* files and descriptors in LFS segments.
*
* Copyright 1989 Regents of the University of California
* Permission to use, copy, modify, and distribute this
* software and its documentation for any purpose and without
* fee is hereby granted, provided that the above copyright
* notice appear in all copies. The University of California
* makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without
* express or implied warranty.
*
* $Header: /sprite/src/kernel/lfs/RCS/lfsFileLayoutInt.h,v 1.2 90/10/19 17:22:49 mendel Exp $ SPRITE (Berkeley)
*/
#ifndef _LFSFILELAYOUTINT
#define _LFSFILELAYOUTINT
#include <lfsFileLayout.h>
typedef struct LfsFileLayout {
LfsFileLayoutParams params; /* File layout description. */
} LfsFileLayout;
extern void LfsFileLayoutInit _ARGS_((void));
extern Boolean LfsFileMatch _ARGS_((Fscache_FileInfo *cacheInfoPtr,
ClientData clientData));
#endif /* _LFSFILELAYOUTINT */